home *** CD-ROM | disk | FTP | other *** search
/ Champak 66 / Vol 66.iso / games / angel_fr.swf / scripts / frame_3 / DoAction_2.as next >
Text File  |  2013-04-24  |  2KB  |  70 lines

  1. stop();
  2. scroll_up_bt.useHandCursor = false;
  3. scroll_down_bt.useHandCursor = false;
  4. scroll_dot.useHandCursor = false;
  5. scroll_bar.useHandCursor = false;
  6. help_txt.htmlText = "<font color = \'#FF80C9\'><b>Γÿå Ω▓î∞₧äδ░⌐δ▓ò Γÿå</b></font><font color = \'#666666\'>\n\n ∞ùö∞áñφ¢äδÑ┤∞╕áδèö ∞âüφòÿ∞óî∞Ü░ ∞ú╝δ│Ç∞ùÉ ∞£ä∞╣ÿφò£ Ω│╝∞¥╝Ω│╝ ∞₧É리δÑ╝ δ░öΩ┐ö Ω░Çδ⌐░ ∞áò∞é¼Ω░üφÿò δ¬¿∞ûæ∞£╝δí£ Ω│╝∞¥╝∞¥ä δ¬¿∞£╝δèö Ω▓î∞₧ä∞₧àδïêδïñ. \n δáêδ▓¿δ│äδí£ ∞ú╝∞û┤∞ºä δ»╕∞àÿΩ░£∞êÿ δºîφü╝ ∞äáδ¼╝∞âü∞₧ÉδÑ╝ δ¬¿∞òä∞ò╝ δáêδ▓¿∞ùà∞¥┤ δÉ⌐δïêδïñ. <font color=\'#FF0000\'>\nΓÇ╗ </font>δ│ä∞é¼φâò∞¥Ç ∞û┤δûñ Ω│╝∞¥╝Ω│╝δÅä φò¿Ω╗ÿ ∞º¥∞¥ä ∞¥┤δñä∞ú╝δèö ∞òä∞¥┤φ࣠∞₧àδïêδïñ. \n<font color=\'#FF80C9\'>\n∞í░∞₧æφéñ : δºê∞Ü░∞èñ φü┤릭\n</font><font color=\'#666666\'></font> ";
  7. scroll_up_bt.onPress = function()
  8. {
  9.    this.onEnterFrame = function()
  10.    {
  11.       help_txt.scroll--;
  12.       scroll_dot._y = 90 + 105 * ((help_txt.scroll - 1) / (help_txt.maxscroll - 1));
  13.    };
  14. };
  15. scroll_down_bt.onPress = function()
  16. {
  17.    this.onEnterFrame = function()
  18.    {
  19.       help_txt.scroll = help_txt.scroll + 1;
  20.       scroll_dot._y = 90 + 105 * ((help_txt.scroll - 1) / (help_txt.maxscroll - 1));
  21.    };
  22. };
  23. scroll_up_bt.onRelease = scroll_up_bt.onReleaseOutside = function()
  24. {
  25.    delete this.onEnterFrame;
  26.    make_scroll_dot();
  27. };
  28. scroll_down_bt.onRelease = scroll_down_bt.onReleaseOutside = function()
  29. {
  30.    delete this.onEnterFrame;
  31.    make_scroll_dot();
  32. };
  33. scroll_dot._x = 310.5;
  34. scroll_dot.onPress = function()
  35. {
  36.    trace("scroll_dot");
  37.    this.startDrag(false,310.5,90,310.5,195);
  38.    this.onEnterFrame = function()
  39.    {
  40.       help_txt.scroll = Math.round(help_txt.maxscroll * ((this._y - 90) / 105));
  41.    };
  42. };
  43. scroll_dot.onRelease = scroll_dot.onReleaseOutside = function()
  44. {
  45.    this.stopDrag();
  46.    make_scroll_dot();
  47. };
  48. scroll_bar.onPress = function()
  49. {
  50.    trace("scroll_bar");
  51.    scroll_dot._y = this._parent._ymouse + 7;
  52.    help_txt.scroll = help_txt.maxscroll * ((scroll_dot._y - 90) / 105);
  53. };
  54. make_scroll_dot = function()
  55. {
  56.    scroll_dot.onEnterFrame = function()
  57.    {
  58.       this._y = 90 + 105 * ((help_txt.scroll - 1) / (help_txt.maxscroll - 1));
  59.    };
  60. };
  61. game_help_start.onRelease = function()
  62. {
  63.    gotoAndStop(4);
  64. };
  65. game_help_start.onRollOver = function()
  66. {
  67.    so17.start(0,1);
  68. };
  69. make_scroll_dot();
  70.